home *** CD-ROM | disk | FTP | other *** search
/ Windows 95 API Bible / Windows 95 API Bible 3 Disc Set.iso / Win32 API Bible Book 2 of 3.iso / chapter6 / sortitem.c < prev    next >
C/C++ Source or Header  |  1996-03-06  |  11KB  |  321 lines

  1.  
  2. #include <windows.h>  
  3. #include <commctrl.h>
  4. #include "sortitem.h"  
  5.  
  6.  
  7. #if defined (WIN32)
  8.     #define IS_WIN32 TRUE
  9. #else
  10.     #define IS_WIN32 FALSE
  11. #endif
  12.  
  13. #define IS_NT      IS_WIN32 && (BOOL)(GetVersion() < 0x80000000)
  14. #define IS_WIN32S  IS_WIN32 && (BOOL)(!(IS_NT) && (LOBYTE(LOWORD(GetVersion()))<4))
  15. #define IS_WIN95   (BOOL)(!(IS_NT) && !(IS_WIN32S)) && IS_WIN32
  16.  
  17. HINSTANCE hInst;   // current instance
  18.  
  19. LPCTSTR lpszAppName = "App";
  20. LPCTSTR lpszTitle   = "ListView_SortItems()"; 
  21.  
  22.  
  23. BOOL RegisterWin95( CONST WNDCLASS* lpwc );
  24. int  CALLBACK pfnCompare( LPARAM lParam1, LPARAM lParam2, LPARAM lParamSort );
  25.  
  26.  
  27. int APIENTRY WinMain( HINSTANCE hInstance, HINSTANCE hPrevInstance,
  28.                       LPTSTR lpCmdLine, int nCmdShow)
  29. {
  30.    MSG      msg;
  31.    HWND     hWnd; 
  32.    WNDCLASS wc;
  33.  
  34.    wc.style         = CS_HREDRAW | CS_VREDRAW;
  35.    wc.lpfnWndProc   = (WNDPROC)WndProc;       
  36.    wc.cbClsExtra    = 0;                      
  37.    wc.cbWndExtra    = 0;                      
  38.    wc.hInstance     = hInstance;              
  39.    wc.hIcon         = LoadIcon (hInstance, lpszAppName); 
  40.    wc.hCursor       = LoadCursor(NULL, IDC_ARROW);
  41.    wc.hbrBackground = (HBRUSH)(COLOR_WINDOW+1);
  42.    wc.lpszMenuName  = lpszAppName;              
  43.    wc.lpszClassName = lpszAppName;              
  44.  
  45.    if ( IS_WIN95 )
  46.    {
  47.       if ( !RegisterWin95( &wc ) )
  48.          return( FALSE );
  49.    }
  50.    else if ( !RegisterClass( &wc ) )
  51.       return( FALSE );
  52.  
  53.    hInst = hInstance; 
  54.  
  55.    hWnd = CreateWindow( lpszAppName, 
  56.                         lpszTitle,    
  57.                         WS_OVERLAPPEDWINDOW, 
  58.                         CW_USEDEFAULT, 0, 
  59.                         CW_USEDEFAULT, 0,  
  60.                         NULL,              
  61.                         NULL,              
  62.                         hInstance,         
  63.                         NULL               
  64.                       );
  65.  
  66.    if ( !hWnd ) 
  67.       return( FALSE );
  68.  
  69.    ShowWindow( hWnd, nCmdShow ); 
  70.    UpdateWindow( hWnd );         
  71.  
  72.    while( GetMessage( &msg, NULL, 0, 0) )   
  73.    {
  74.       TranslateMessage( &msg ); 
  75.       DispatchMessage( &msg );  
  76.    }
  77.  
  78.    return( msg.wParam ); 
  79. }
  80.  
  81.  
  82. BOOL RegisterWin95( CONST WNDCLASS* lpwc )
  83. {
  84.    WNDCLASSEX wcex;
  85.  
  86.    wcex.style         = lpwc->style;
  87.    wcex.lpfnWndProc   = lpwc->lpfnWndProc;
  88.    wcex.cbClsExtra    = lpwc->cbClsExtra;
  89.    wcex.cbWndExtra    = lpwc->cbWndExtra;
  90.    wcex.hInstance     = lpwc->hInstance;
  91.    wcex.hIcon         = lpwc->hIcon;
  92.    wcex.hCursor       = lpwc->hCursor;
  93.    wcex.hbrBackground = lpwc->hbrBackground;
  94.    wcex.lpszMenuName  = lpwc->lpszMenuName;
  95.    wcex.lpszClassName = lpwc->lpszClassName;
  96.  
  97.    // Added elements for Windows 95.
  98.    //...............................
  99.    wcex.cbSize = sizeof(WNDCLASSEX);
  100.    wcex.hIconSm = LoadImage(wcex.hInstance, lpwc->lpszClassName, 
  101.                             IMAGE_ICON, 16, 16,
  102.                             LR_DEFAULTCOLOR );
  103.             
  104.    return RegisterClassEx( &wcex );
  105. }
  106.  
  107. #define ASC   1
  108. #define DESC  2
  109.  
  110. LPCTSTR lpszData[4]  = { "Circle", "Rectangle", "Cross", "Check" };
  111. LPCTSTR lpszColor[4] = { "Yellow", "Red",       "Black", "Black" };
  112.  
  113. int  nSortDir[2] = {0, 0};
  114. HWND hList       = NULL;
  115.  
  116. LRESULT CALLBACK WndProc( HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam )
  117. {
  118.  
  119.    switch( uMsg )
  120.    {
  121.       case WM_CREATE  :
  122.               {
  123.                  HIMAGELIST hImage, hSmall;
  124.  
  125.                  InitCommonControls();
  126.  
  127.                  // Create the image lists and the list view.
  128.                  //..........................................
  129.                  hImage = ImageList_Create( 32, 32, ILC_COLOR4 | ILC_MASK, 4, 1 ); 
  130.                  hSmall = ImageList_Create( 16, 16, ILC_COLOR4 | ILC_MASK, 4, 1 );
  131.                  hList  = CreateWindowEx( 0, WC_LISTVIEW, "",
  132.                                           WS_CHILD | WS_VISIBLE | LVS_REPORT | 
  133.                                           LVS_EDITLABELS | LVS_SINGLESEL,
  134.                                           0, 20, 100, 100,
  135.                                           hWnd,
  136.                                           (HMENU)1,
  137.                                           hInst,
  138.                                           NULL);
  139.  
  140.                  if ( hList && hImage && hSmall )
  141.                  {
  142.                     LV_COLUMN col;
  143.                     LV_ITEM   item;
  144.                     int       i;
  145.                     char      szBuf[16];
  146.  
  147.                     // Set the large and small image lists.
  148.                     //.....................................
  149.                     ListView_SetImageList( hList, hImage, LVSIL_NORMAL );
  150.                     ListView_SetImageList( hList, hSmall, LVSIL_SMALL );
  151.  
  152.                     // Add the images to the image list.
  153.                     //..................................
  154.                     for( i=0; i<4; i++ )
  155.                     {
  156.                        ImageList_AddIcon( hImage, LoadIcon( hInst, lpszData[i] ) );
  157.                        ImageList_AddIcon( hSmall, LoadIcon( hInst, lpszData[i] ) );
  158.                     }
  159.  
  160.                     // Add the columns for the report view.
  161.                     //.....................................
  162.                     col.mask    = LVCF_FMT | LVCF_WIDTH | LVCF_TEXT | LVCF_SUBITEM; 
  163.                     col.fmt     = LVCFMT_LEFT; 
  164.                     col.cx      = 100; 
  165.  
  166.                     col.pszText  = "Name"; 
  167.                     col.iSubItem = 0;
  168.                     ListView_InsertColumn( hList, 0, &col );
  169.                     
  170.                     col.pszText  = "Color"; 
  171.                     col.iSubItem = 1;
  172.                     ListView_InsertColumn( hList, 1, &col );
  173.  
  174.  
  175.                     // Tell the list view to expect 200 items.
  176.                     //........................................
  177.                     ListView_SetItemCount( hList, 200 );
  178.  
  179.                     // Insert items into the list view.
  180.                     //.................................
  181.                     for( i=0; i<200; i++ )
  182.                     {
  183.                        wsprintf( szBuf, "Item %d", i );
  184.  
  185.                        item.mask     = LVIF_TEXT | LVIF_IMAGE | LVIF_PARAM;
  186.                        item.pszText  = szBuf;   
  187.                        item.iItem    = i;
  188.                        item.iSubItem = 0;
  189.                        item.iImage   = i%4;
  190.                        item.lParam   = i;
  191.                        ListView_InsertItem( hList, &item );
  192.  
  193.                        item.mask     = LVIF_TEXT;
  194.                        item.pszText  = (LPTSTR)lpszColor[i%4];
  195.                        item.iSubItem = 1;
  196.                        ListView_SetItem( hList, &item );
  197.                     }
  198.                  }
  199.               }
  200.               break;
  201.  
  202.       case WM_SIZE :
  203.               if ( hList )
  204.                  MoveWindow( hList, 0, 0, LOWORD( lParam ), HIWORD( lParam ), FALSE );
  205.  
  206.               if ( wParam == SIZE_RESTORED || wParam == SIZE_MAXIMIZED )
  207.                  ListView_RedrawItems( hList, 0, ListView_GetItemCount( hList ) );
  208.               break;
  209.  
  210.       case WM_NOTIFY :
  211.               {
  212.                  NM_LISTVIEW* pNM = (NM_LISTVIEW*)lParam;
  213.  
  214.                  if ( pNM->hdr.code == LVN_COLUMNCLICK )
  215.                  {
  216.                     if ( nSortDir[pNM->iSubItem] == ASC )
  217.                        nSortDir[pNM->iSubItem] = DESC;
  218.                     else
  219.                        nSortDir[pNM->iSubItem] = ASC;
  220.  
  221.                     ListView_SortItems( hList, pfnCompare, pNM->iSubItem );
  222.                  }
  223.               }
  224.               break;
  225.  
  226.       case WM_COMMAND :
  227.               switch( LOWORD( wParam ) )
  228.               {
  229.                  case IDM_ABOUT :
  230.                         DialogBox( hInst, "AboutBox", hWnd, (DLGPROC)About );
  231.                         break;
  232.  
  233.                  case IDM_EXIT :
  234.                         DestroyWindow( hWnd );
  235.                         break;
  236.               }
  237.               break;
  238.       
  239.       case WM_DESTROY :
  240.               if ( hList )
  241.               {
  242.                  if ( ListView_GetImageList( hList, LVSIL_NORMAL ) )
  243.                     ImageList_Destroy( ListView_GetImageList( hList, LVSIL_NORMAL ) );
  244.  
  245.                  if ( ListView_GetImageList( hList, LVSIL_SMALL ) )
  246.                     ImageList_Destroy( ListView_GetImageList( hList, LVSIL_SMALL ) );
  247.               }
  248.  
  249.               PostQuitMessage(0);
  250.               break;
  251.  
  252.       default :
  253.             return( DefWindowProc( hWnd, uMsg, wParam, lParam ) );
  254.    }
  255.  
  256.    return( 0L );
  257. }
  258.  
  259.  
  260. int CALLBACK pfnCompare( LPARAM lParam1, LPARAM lParam2, LPARAM lParamSort )
  261. {
  262. static LV_FINDINFO fi;
  263. static int         nItem1, nItem2;
  264. static char        szBuf1[30], szBuf2[30];
  265.  
  266.    if ( lParamSort == 0 )
  267.    {
  268.       if ( nSortDir[0] == ASC )
  269.          return( lParam1 < lParam2 ? -1 : lParam1 > lParam2 ? 1 : 0 );
  270.       else
  271.          return( lParam1 > lParam2 ? -1 : lParam1 < lParam2 ? 1 : 0 );
  272.    }
  273.    else
  274.    {
  275.       // Determine the items that we are comparing.
  276.       //...........................................
  277.       fi.flags  = LVFI_PARAM;
  278.       fi.lParam = lParam1;
  279.       nItem1 = ListView_FindItem( hList, -1, &fi );
  280.  
  281.       fi.lParam = lParam2; 
  282.       nItem2 = ListView_FindItem( hList, -1, &fi );
  283.  
  284.       // Retrieve the item text so we can compare it.
  285.       //.............................................
  286.       ListView_GetItemText( hList, nItem1, 1, szBuf1, sizeof( szBuf1 ) );
  287.       ListView_GetItemText( hList, nItem2, 1, szBuf2, sizeof( szBuf2 ) );
  288.  
  289.       // Return the comparison results.
  290.       //...............................
  291.       if ( nSortDir[1] == ASC )
  292.          return( strcmp( szBuf1, szBuf2 ) );
  293.       else
  294.          return( strcmp( szBuf1, szBuf2 ) * -1 ); 
  295.    }
  296. }
  297.  
  298.  
  299. LRESULT CALLBACK About( HWND hDlg,           
  300.                         UINT message,        
  301.                         WPARAM wParam,       
  302.                         LPARAM lParam)
  303. {
  304.    switch (message) 
  305.    {
  306.        case WM_INITDIALOG: 
  307.                return (TRUE);
  308.  
  309.        case WM_COMMAND:                              
  310.                if (   LOWORD(wParam) == IDOK         
  311.                    || LOWORD(wParam) == IDCANCEL)    
  312.                {
  313.                        EndDialog(hDlg, TRUE);        
  314.                        return (TRUE);
  315.                }
  316.                break;
  317.    }
  318.  
  319.    return (FALSE); 
  320. }
  321.